home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / a_utils / yacc / flexyacc / aflex.lha / aflex / src / alsys / command_lineB.a < prev    next >
Text File  |  1991-07-22  |  2KB  |  49 lines

  1. -------------------------------
  2. -- command_lineB.a
  3. -------------------------------
  4. -- Copyright (c) 1990 Regents of the University of California.
  5. -- All rights reserved.
  6. --
  7. -- This software was developed by John Self of the Arcadia project
  8. -- at the University of California, Irvine.
  9. --
  10. -- Redistribution and use in source and binary forms are permitted
  11. -- provided that the above copyright notice and this paragraph are
  12. -- duplicated in all such forms and that any documentation,
  13. -- advertising materials, and other materials related to such
  14. -- distribution and use acknowledge that the software was developed
  15. -- by the University of California, Irvine.  The name of the
  16. -- University may not be used to endorse or promote products derived
  17. -- from this software without specific prior written permission.
  18. -- THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
  19. -- IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  20. -- WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  21.  
  22. -- TITLE command line interface
  23. -- AUTHOR: John Self (UCI)
  24. -- DESCRIPTION command line interface body for use with the VERDIX VADS system.
  25. -- NOTES this file is system dependent
  26. -- $Header: /co/ua/self/arcadia/aflex/ada/src/RCS/command_lineB.a,v 1.3 90/01/12 15:19:44 self Exp Locker: self $ 
  27.  
  28. -- History
  29. -- 14-Jun-1991        Rolf EBERT    
  30. --    use of the Alsys predefinded package 'System_Environment'.
  31.  
  32. with Tstring; use Tstring; 
  33. --with A_STRINGS; use A_STRINGS; 
  34. --with COMMAND_LINE; 
  35.  
  36. with System_Environment;
  37.  
  38. package body Command_Line_Interface is 
  39.  
  40.   procedure Initialize_Command_Line is 
  41.   begin
  42.      Argc := System_Environment.Arg_Count;
  43.      for I in 0 .. Argc loop
  44.      Argv(I) := Vstr(System_Environment.Arg_Value(I));
  45.      end loop;
  46.   end Initialize_Command_Line; 
  47.  
  48. end Command_Line_Interface; 
  49.